home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
man
/
man-part1
/
cat3
/
sci2exp.3
< prev
next >
Wrap
Text File
|
1999-09-16
|
719b
|
67 lines
abs(G) Scilab Function abs(G)
NAME
sci2exp - converts variable to a scilab expression
CALLING SEQUENCE
t=sci2exp(a [,nam])
PARAMETERS
a : a scilab variable, may be
- constant,
- polynomial
- string matrix
- list
- boolean matrix
nam : character string
t : vector of string, contains the expression or instruction definition
DESCRIPTION
sci2exp converts variable to an instruction if nam is given or to an
expression .
Example
a=[1 2;3 4]
sci2exp(a,'aa')
sci2exp(ssrand(2,2,2))
sci2exp(poly([1 0 3 4],'s'),'fi')